home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / 80X86 / IDA35X.ZIP / IDACOMP.BAT < prev    next >
Encoding:
DOS Batch File  |  1995-12-18  |  600 b   |  24 lines

  1. @echo off
  2. rem
  3. rem    This command file compresses IDA database so that it will occupy
  4. rem    less space on the disk and IDA will work faster.
  5. rem
  6. rem    To use this command file you should:
  7. rem        - run IDA and exit with "Don't pack database"
  8. rem        - run this command file on the *.ID0 file
  9. rem          for example: IDACOMP MYBASE.ID0
  10. rem        - if you don't want to keep the database in the
  11. rem          unpacked form, run IDA and exit with "Pack..." 
  12. rem
  13. rem
  14. btc %1 idabase.tmp
  15. if errorlevel 1 goto Error
  16. copy idabase.tmp %1
  17. del idabase.tmp
  18. goto Ex
  19. :Error
  20. echo .
  21. echo .  Compression failed.
  22. echo .
  23. :Ex
  24.